home *** CD-ROM | disk | FTP | other *** search
- unit WpTools;
- { WPTools V1.5 -----------------------------------------
- Version of 3/20/1996
- CopyRight 1996 by Julian Ziersch Software, Mⁿnchen
- for Delphi 16 + 32
- ------------------------------------------------------ }
- interface
- {$IFNDEF WIN32}
- {$R WPTORES.DCR}
- {$ELSE}
- {$R WPTORES.RES}
- {$ENDIF}
-
- uses Classes, WPTBar, WPDBRich, WPRich, WPRuler, WPStatus, WPRtfIO, WPStat2,DsgnIntf,
- WPWinCtr, WPPRStt, WPPRRtf, Wpspdlg1, WPLabel, Wppagprp, WPParPrp,WPParBrd;
- procedure Register;
- implementation
- procedure Register;
- begin
- RegisterComponents('WPTools',
- [TWPToolBar,TWPRuler,TWPRichText,TWPRichTextLabel,
- TDBWPRichText,TWPRtfStorage,TWPStatusBar,TWPAltStatusBar,
- {TWPTextPropDlg,}TWPPagePropDlg,TWPParagraphPropDlg,TWPParagraphBorderDlg,
- TWPSpellCheckDlg]);
- RegisterPropertyEditor(TypeInfo(TStringList),TWPStatusBarBasic,'Strings',TStatusItemsProperty);
- RegisterPropertyEditor(TypeInfo(TWPRTFTextIO), TWPCustomRtfEdit,'RtfText',TRtfTextProperty);
- RegisterPropertyEditor(TypeInfo(TWPRTFTextIO), TWPCustomRtfLabel,'RtfText',TRtfTextProperty);
- RegisterPropertyEditor(TypeInfo(TWPRTFTextIO), TWPRtfStorage,'RtfText',TRtfTextProperty);
- end;
- end.
-
-